answersLogoWhite

0

On your previous row or round, you probably worked one or more chains between stitches. This instruction tells you to work four single crochets into the space created by the chains. In other words, you are to insert your hook into the space, yarn over, and pull through, working over the "chain" created by the series of chain stitches.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What does it mean when a crochet pattern says to sc in next ch to next ch-1sp?

When a crochet pattern instructs you to "sc in next ch to next ch-1 sp," it means you should single crochet (sc) into the chain (ch) that immediately follows the current position, and then move to the next chain-1 space (ch-1 sp) in the pattern. This indicates that you'll be placing the single crochet in a specific location while also indicating that you should be aware of the next designated space for additional stitches or pattern elements. Essentially, it's guiding you on where to place your stitch in relation to the structure of the project.


What does '1 sc in next ch-1 sp.' mean?

1 single crochet in the next chain 1 space


What does 3 SC 2 SC in next sp mean?

Do 3 separate single crochet in the next 3 chains, then in the next chain make 2 single crochet in the same space


What does sc mean on the relationship block of a military dependent id card?

It stands for STEP CHILD, child would be CH, and spouse is SP


What does sc in next ch-1 sp ch 1 mean in crochet pattern?

It means "single crochet". The stitch is the shortest of the crochet stitches and makes a very compact garment. Other notations can be double crochet, half double crochet, and even double triple crochet.Always read the whole pattern thoroughly before you begin your work.To sc in sc means to place your next single crochet stitch into the next single crochet stitch from the previous row. If your next stitch is a chain, for example, you would skip it and go to the next single crochet. Be aware that sometimes there will be a typographical error in a pattern, so be alert to how the stitch works in the pattern you are using.


What does sp mean in crochet instructions?

Sp in crochet patterns means "space" as far as I know. Generally, a space in crochet is created by the chain stitch(es) on the previous row/round. If your pattern states to sc, (single crochet) in the next sp (space) it means to pull the yarn around the stitch (the chain stitches) rather than through the chain stitch as you'd do when working into your beginning chain.


Answer to the following rebus ee ch sp?

Parts of speech


What does stupedro mean?

"Estupendo" means fine, marvelous, wonderful. For future reference, words beginning with "st", "sp" and "sc" don't exist in Spanish


In a rebus puzzle what does ee ch sp mean?

Parts of speech


Does anyone know a proper pattern to knit a granny square?

There are many patterns for crocheting a granny square. Lots and lots of variations, but this is the basic pattern--This will make an approximate six inch square:Start with a, 5 ch , join in first ch.1. *3 dc in lp, 2 ch*; Repeat * to * 4 times ; join B in initial st2. *(3dc, 2ch, 3 dc) = corner in next sp, 1 ch*; Repeat * to * 4 times ; join C in initial st3. *3 dc in next sp, 1 ch, corner in corner, 1 ch* ; Repeat * to * 4 times ; join A in initial st4. *(3 dc in next sp, 1 ch) twice, corner in corner sp, 1 ch*; Repeat * to * 4 times ; join B in initial st5. *(3 dc in next sp, 1 ch) 3 times, corner in corner sp, 1 ch*; Repeat * to * 4 times ; join thread in initial st. Cut, weave in ends


What is the next three numbers in the pattern 354555?

The number 5 is used as a spacer (sp) in the sequence. 3-sp-4-sp-5-sp-6-sp-7-sp.....


Write a program in java to get String contents of a string?

import java.io.*; class StringContents { protected static void main()throws IOException { BufferedReader in=new BufferedReader(new InputStreamReader(System.in)); System.out.print("Enter the String: "); String st=in.readLine(); short u=0,l=0,sp=0; for(short i=0;i<st.length();i++) { char ch=st.charAt(i); if(ch>=65&&ch<91) u++; else if(ch>=97&&ch<123) l++; else if(ch==' ') continue; else sp++; } System.out.println("No. of lower case characters: "+l); System.out.println("No. of upper case characters: "+u); System.out.print("No. of special characters: "+sp); }}