1
0
Fork 0
mirror of synced 2024-05-17 11:03:33 +12:00

Merge pull request #10 from davidfitzgibbon/patch-1

Small typo
This commit is contained in:
Nikita Prokopov 2015-05-24 16:56:08 +05:00
commit 4028fca105

View file

@ -4,7 +4,7 @@
### Problem
Programmers use a lot of symbols, often encoded with several characters. For human brain sequences like `->`, `<=` or `:=` are single logical token, even if they take two or three places on the screen. Your eye spends non-zero amount of evergy to scan, parse and join multiple characters into a single logical one. Ideally, all programming languages should be designed with full-fledged Unicode symbols for operators, but thats not the case yet.
Programmers use a lot of symbols, often encoded with several characters. For human brain sequences like `->`, `<=` or `:=` are single logical token, even if they take two or three places on the screen. Your eye spends non-zero amount of energy to scan, parse and join multiple characters into a single logical one. Ideally, all programming languages should be designed with full-fledged Unicode symbols for operators, but thats not the case yet.
### Solution