misc: Fix spelling in SnowflakeUtils.FromSnowflake (#1800)

```diff
--- geenrated
+++ generated
```
This commit is contained in:
Waterball
2021-04-28 14:50:41 +01:00
committed by GitHub
parent 25b04c4a97
commit 6aff419edd

View File

@@ -12,7 +12,7 @@ namespace Discord
/// </summary> /// </summary>
/// <param name="value">The snowflake identifier to resolve.</param> /// <param name="value">The snowflake identifier to resolve.</param>
/// <returns> /// <returns>
/// A <see cref="DateTimeOffset" /> representing the time for when the object is geenrated. /// A <see cref="DateTimeOffset" /> representing the time for when the object is generated.
/// </returns> /// </returns>
public static DateTimeOffset FromSnowflake(ulong value) public static DateTimeOffset FromSnowflake(ulong value)
=> DateTimeOffset.FromUnixTimeMilliseconds((long)((value >> 22) + 1420070400000UL)); => DateTimeOffset.FromUnixTimeMilliseconds((long)((value >> 22) + 1420070400000UL));