Skip to content

Commit

Permalink
Fix some typos in help text
Browse files Browse the repository at this point in the history
Thanks to Doug Stewart for point these out.
  • Loading branch information
cbm755 committed Jan 3, 2016
1 parent bec7b30 commit 1086434
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion inst/@sym/degree.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
%% @documentencoding UTF-8
%% @deftypefn {Function File} {@var{n} =} degree (@var{p})
%% @deftypefnx {Function File} {@var{n} =} degree (@var{p}, @var{x})
%% Extract numerator and demoninator of symbolic expression.
%% Return the degree of a polynomial expression.
%%
%% Examples:
%% @example
Expand Down
2 changes: 1 addition & 1 deletion inst/@sym/formula.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
%% If not, see <http://www.gnu.org/licenses/>.

%% -*- texinfo -*-
%% @deftypefn {Function File} {@var{g}} formula (@var{f})
%% @deftypefn {Function File} {@var{g} =} formula (@var{f})
%% Return a symbolic expression for this object.
%%
%% For a @@sym, this simply returns the sym itself. Subclasses
Expand Down
13 changes: 6 additions & 7 deletions inst/@sym/numden.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,25 @@
%% If not, see <http://www.gnu.org/licenses/>.

%% -*- texinfo -*-
%% @documentencoding UTF-8
%% @deftypefn {Function File} {@var{n}, @var{d} =} numden (@var{x})
%% Extract numerator and demoninator of symbolic expression.
%% Extract numerator and denominator of symbolic expression.
%%
%% Examples:
%% @example
%% @group
%% >> [n, d] = numden(sym(4)/5)
%% @result{}
%% n = (sym) 4
%% d = (sym) 5
%% @result{} n = (sym) 4
%% @result{} d = (sym) 5
%% @end group
%% @end example
%%
%% @example
%% @group
%% >> syms x y
%% >> [n, d] = numden((x+y)/sin(x))
%% @result{}
%% n = (sym) x + y
%% d = (sym) sin(x)
%% @result{} n = (sym) x + y
%% @result{} d = (sym) sin(x)
%% @end group
%% @end example
%%
Expand Down
3 changes: 2 additions & 1 deletion inst/@symfun/formula.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
%% If not, see <http://www.gnu.org/licenses/>.

%% -*- texinfo -*-
%% @deftypefn {Function File} {@var{g}} formula (@var{f})
%% @documentencoding UTF-8
%% @deftypefn {Function File} {@var{g} =} formula (@var{f})
%% Return a symbolic expression for this symfun.
%%
%% This returns the expression that defines the function given by
Expand Down

0 comments on commit 1086434

Please sign in to comment.