docs: Some minor stuff in fish_for_bash_users

This commit is contained in:
Fabian Homborg 2021-09-24 20:32:29 +02:00
parent 615e8b2e8b
commit f4c8dc72a7

View File

@ -216,7 +216,6 @@ Fish has a POSIX-compatible ``test`` or ``[`` builtin. There is no ``[[`` and ``
Arithmetic Expansion
--------------------
-
Fish does not have ``$((i+1))`` arithmetic expansion, computation is handled by :ref:`math <cmd-math>`::
@ -227,6 +226,11 @@ It can handle floating point numbers::
> math 5 / 2
2.5
And also hase some functions, like for trigonometry::
> math cos 2 x pi
1
Prompts
-------