From 36c3984e2c5198ba2a49273af243488e0ac5e643 Mon Sep 17 00:00:00 2001 From: Bret Curtis Date: Mon, 3 Jun 2013 15:17:25 +0200 Subject: [PATCH] Update perlin.py typo --- perlin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perlin.py b/perlin.py index bb38d85..cc58239 100644 --- a/perlin.py +++ b/perlin.py @@ -86,7 +86,7 @@ def __init__(self, period=None, permutation_table=None): prove useful, they will not be "pure" simplex noise. The largest element in the sequence must be no larger than period-1. - period and permutation_table may not be specified togther. + period and permutation_table may not be specified together. """ if period is not None and permutation_table is not None: raise ValueError(