From d97f0a82bc0f857285ce45e75966035344cced42 Mon Sep 17 00:00:00 2001 From: RuiAlonso Date: Fri, 18 Mar 2022 12:25:14 +0100 Subject: [PATCH] doc: changed Layered doc --- lib/game/components/layer.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/game/components/layer.dart b/lib/game/components/layer.dart index 518232fa..acbf9394 100644 --- a/lib/game/components/layer.dart +++ b/lib/game/components/layer.dart @@ -7,8 +7,7 @@ import 'package:flutter/material.dart'; /// /// [BodyComponent]s with compatible [Layer]s can collide with each other, /// ignoring others. This compatibility depends on bit masking operation -/// between layers. -/// For more information read: https://en.wikipedia.org/wiki/Mask_(computing). +/// between layers for more information read: https://en.wikipedia.org/wiki/Mask_(computing). /// {@endtemplate} mixin Layered on BodyComponent { Layer _layer = Layer.all;