From 0657ffd1a0b9bc8747b7db34c3c624c14fa19fab Mon Sep 17 00:00:00 2001 From: PaddiM8 Date: Wed, 22 Sep 2021 23:37:46 +0200 Subject: [PATCH] Fixed broken link in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 382882a..0ce4ec6 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Kalker (or "kalk") is a calculator program/website that supports user-defined va * Operators: `+`, `-`, `*`, `/`, `!` * Groups: `()`, `⌈ceil⌉`, `⌊floor⌋`, `[iverson]` -* [Pre-defined functions and constants](https://github.com/PaddiM8/kalker/blob/master/kalk/src/prelude.rs) +* [Pre-defined functions and constants](https://github.com/PaddiM8/kalker/blob/master/kalk/src/prelude/mod.rs) * User-defined functions and variables. `f(x, y) = xy`, `x = 5` * Derivative of functions (derivatives of noisy functions or of higher order can be a bit inaccurate). `f'(2)`, `sin'(-pi)` * Integration. `∫(0, pi, sin(x) dx)` or `∫(0, π, sin(x) dx)`, maybe sometimes be slightly off