shfshanyue / fp-jargon-zh

函数式编程术语及示例。本项目译自 https://github.com/hemanth/functional-programming-jargon
1.28k stars 108 forks source link

Modify translation of Idempotent #11

Closed ambiguoustexture closed 2 years ago

ambiguoustexture commented 2 years ago

Original:

A function is idempotent if reapplying it to its result does not produce a different result.

Existed translation:

如果一个函数执行多次皆返回相同的结果,则它是幂等的。

Modified translation:

如果一个函数对其执行结果重复执行后返回相同的结果,则它是幂等的。