summaryrefslogtreecommitdiffhomepage
path: root/matlab.html.markdown
diff options
context:
space:
mode:
authorHairyFotr <hairyfotr@gmail.com>2017-08-23 10:14:39 +0200
committerHairyFotr <hairyfotr@gmail.com>2017-08-23 10:14:39 +0200
commit985d23a52b76593a120adff5381c2df3a80fe298 (patch)
tree0eeec5a7b13a110e18f319d1fe1c4568b68385a7 /matlab.html.markdown
parent9c5a67ca0f3c989ef31141f83d64fba10b93b059 (diff)
Fix a bunch of typos
Diffstat (limited to 'matlab.html.markdown')
-rw-r--r--matlab.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/matlab.html.markdown b/matlab.html.markdown
index 86b116c6..6dc9f697 100644
--- a/matlab.html.markdown
+++ b/matlab.html.markdown
@@ -353,7 +353,7 @@ double_input(6) % ans = 12
% anonymous function. Useful when quickly defining a function to pass to
% another function (eg. plot with fplot, evaluate an indefinite integral
% with quad, find roots with fzero, or find minimum with fminsearch).
-% Example that returns the square of it's input, assigned to the handle sqr:
+% Example that returns the square of its input, assigned to the handle sqr:
sqr = @(x) x.^2;
sqr(10) % ans = 100
doc function_handle % find out more