diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-09-17 20:58:22 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-09-17 20:58:22 +0200 |
commit | 7373759947ac54e9a9b3b1a26572cca5cdc9a0e6 (patch) | |
tree | d2e9da2955a8eac11cc27e0dd8433b13ac84999e /shell | |
parent | 7bc3d39695728c6257a95bc2d75e80d3e2431c8b (diff) |
fix "aloc" -> "alloc" typos
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 790367bd8..bffb4a245 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -11663,7 +11663,7 @@ parsebackq: { * FIXME: this can allocate very large block on stack and SEGV. * Example: * echo "..<100kbytes>..`true` $(true) `true` ..." - * alocates 100kb for every command subst. With about + * allocates 100kb for every command subst. With about * a hundred command substitutions stack overflows. * With larger prepended string, SEGV happens sooner. */ |