From 639842332fb367f2bc700bbbd7a40abf394a1c3e Mon Sep 17 00:00:00 2001 From: Dolan Date: Wed, 13 Mar 2019 23:13:10 +0000 Subject: [PATCH] Change contribution guidelines --- docs/contribution-guidelines.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/contribution-guidelines.md b/docs/contribution-guidelines.md index 1ad0a2c4ff..858966736f 100644 --- a/docs/contribution-guidelines.md +++ b/docs/contribution-guidelines.md @@ -141,6 +141,8 @@ If a method is `non-temporal`, put it in the objects `constructor`. For example: const table = new Table(width: number); ``` +`Non-temporal` methods are usually methods which can only be used one time and one time only. For example, `.float()`. It does not make sense to call `.float()` again if its already floating. + I am not sure what the real term is, but this will do. ## Interfaces over type alias