Skip to content

Commit f3b47fb

Browse files
Remove relative path to vendored shards markd and reply (#13992)
1 parent 59a0534 commit f3b47fb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/compiler/crystal/interpreter/repl_reader.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require "../../../../lib/reply/src/reply"
1+
require "reply"
22

33
class Crystal::ReplReader < Reply::Reader
44
KEYWORDS = %w(

src/compiler/crystal/tools/doc/generator.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require "../../../../../lib/markd/src/markd"
1+
require "markd"
22
require "crystal/syntax_highlighter/html"
33

44
class Crystal::Doc::Generator

src/compiler/crystal/tools/playground/server.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ require "http/server"
22
require "log"
33
require "ecr/macros"
44
require "compiler/crystal/tools/formatter"
5-
require "../../../../../lib/markd/src/markd"
5+
require "markd"
66

77
module Crystal::Playground
88
Log = ::Log.for("crystal.playground")

0 commit comments

Comments
 (0)