From 6b429e65714aeeb5e7e0c332eb915dfd76609891 Mon Sep 17 00:00:00 2001 From: Vindaar Date: Thu, 11 Oct 2018 14:19:48 +0200 Subject: [PATCH] replace deprecated 'dot' import / export by '/' --- yaml.nim | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/yaml.nim b/yaml.nim index a98843b..1896284 100644 --- a/yaml.nim +++ b/yaml.nim @@ -38,7 +38,8 @@ ## * The hints API in `hints `_ provides a simple proc for ## guessing the type of a scalar value. -import yaml.dom, yaml.hints, yaml.parser, yaml.presenter, - yaml.serialization, yaml.stream, yaml.taglib, yaml.tojson -export yaml.dom, yaml.hints, yaml.parser, yaml.presenter, - yaml.serialization, yaml.stream, yaml.taglib, yaml.tojson \ No newline at end of file +import yaml / [dom, hints, parser, presenter, + serialization, stream, taglib, tojson] + +export dom, hints, parser, presenter, + serialization, stream, taglib, tojson