removes some dots (#33987)

This commit is contained in:
FrozenGuy5
2018-01-02 02:46:21 +00:00
committed by CitadelStationBot
parent c2fb9ed729
commit bed61a6676

View File

@@ -51,7 +51,7 @@ As mentioned before, you are expected to follow these specifications in order to
### Object Oriented Code ### Object Oriented Code
As BYOND's Dream Maker (henceforth "DM") is an object-oriented language, code must be object-oriented when possible in order to be more flexible when adding content to it. If you don't know what "object-oriented" means, we highly recommend you do some light research to grasp the basics. As BYOND's Dream Maker (henceforth "DM") is an object-oriented language, code must be object-oriented when possible in order to be more flexible when adding content to it. If you don't know what "object-oriented" means, we highly recommend you do some light research to grasp the basics.
### All BYOND paths must contain the full path. ### All BYOND paths must contain the full path
(i.e. absolute pathing) (i.e. absolute pathing)
DM will allow you nest almost any type keyword into a block, such as: DM will allow you nest almost any type keyword into a block, such as:
@@ -105,7 +105,7 @@ The previous code made compliant:
code code
``` ```
### No overriding type safety checks. ### No overriding type safety checks
The use of the : operator to override type safety checks is not allowed. You must cast the variable to the proper type. The use of the : operator to override type safety checks is not allowed. You must cast the variable to the proper type.
### Type paths must begin with a / ### Type paths must begin with a /